	CC=gcc
 	MODFLAGS := -Wall

# %1 is the first parameter input
all:
# EX94421A.cpp :source file of DLL
# lib94421A.so :output file
# must have # and a blank for comments
# must use tab to the first blank character for command
	echo
	gcc -Wall -c -fPIC EX94421A.cpp

	gcc -shared -o lib94421A.so \
		       EX94421A.o
		       
	cp ./lib94421A.so /usr/lib/
 
	

